@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #314862;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #13447f;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #065cc2;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-size-base: 16px;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.dark-background {
  --background-color: #065cc2;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #afcdf1;
  --surface-color: #2973cc;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Teodor-Regular";
  src: url("../fonts/Teodor-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "font-2";
  src: url("../fonts/font-2.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  font-family: var(--font-sans);
  background-color: var(--background-color);
  color: var(--default-color);
  line-height: 0.4;
  overflow-x: hidden;
  font-weight: 400;
  font-size: var(--font-size-base);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Teodor-Regular";
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

.section-padding {
  padding: 60px 0;
}

img {
  width: 100%;
  height: auto;
}

/* section padding */

/* --- HEADER/NAVBAR & HAMBURGER MENU STYLES (from style.css integration) --- */

.sh {
  --transition-duration: 1s;
  --transition-ease: cubic-bezier(0.19, 1, 0.22, 1);
  --color: #fff;
  color: var(--color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(0);
  transition: transform var(--transition-duration) var(--transition-ease);
}

.sh.is-active,
.sh.is-scrolled .sh-light,
.sh.is-scrolled .sh-light__mask {
  transform: translateY(0);
}

.sh.is-instant,
.sh.is-instant .sh-light,
.sh.is-instant .sh-light__mask {
  transition: none;
}

.sh.is-always .sh-light,
.sh.is-always .sh-light__mask {
  transform: translateY(0) !important;
}

.sh.is-light {
  --color: #7c7262;
}

.sh-logo {
  --width: 10rem;
  --height: auto;
  --scale: 0.5;
  --left: 2rem;
  left: var(--left);
  transform: scale(var(--scale));
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color);
}

.sh-logo__img {
  height: var(--height);
  width: var(--width);
  fill: currentColor;
}

@media (min-width: 650px) {
  .sh-logo {
    --width: 22.5rem;
    --scale: 0.2;
    --left: calc(50% - var(--width) / 2);
  }

  .sh-logo.--large {
    --scale: 0.6 !important;
  }
}

/* Hamburger Menu */
.mm {
  background: none;
  border: none;
  color: var(--color);
  cursor: pointer;
  padding: 1rem;
  z-index: 1001;
}

.mm-line {
  --width: 5rem;
  --height: 0.2rem;
  height: var(--height);
  position: relative;
  width: var(--width);
}

.mm-line__inner {
  background-color: currentColor;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
}

.mm-line__inner:first-child {
  transform: translateY(-0.5rem);
}

.mm.is-active .mm-line__inner:first-child {
  transform: rotate(22.5deg) translateY(0);
}

.mm-line__inner:nth-child(2) {
  transform: translateY(0.5rem);
}

.mm.is-active .mm-line__inner:nth-child(2) {
  transform: rotate(-22.5deg) translateY(0);
}

/* Hamburger label animation */
.label {
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: grid;
}

.label > * {
  grid-area: 1/1;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (min-width: 650px) {
  .mm__label {
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .mm.is-active .mm__label:first-child {
    transform: translateY(-105%);
  }

  .mm__label:nth-child(2) {
    transform: translateY(105%);
  }

  .mm.is-active .mm__label:nth-child(2) {
    transform: translateY(0);
  }
}

/* Inquire Button (already styled, but ensure .btn.--light and .sh__inquire are present) */
.btn.--light {
  --color-primary: #fff;
  --color-secondary: #7c7262;
}

.is-light .btn.--light {
  --color-primary: #7c7262;
  --color-secondary: #fff;
}

.sh__inquire {
  pointer-events: auto;
  transition: opacity 0.5s ease-out;
}

/* hero section */
.hero-section h1 {
  font-family: "Teodor-Regular";
  font-size: 5rem;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #7c7262;
}

/* hero section */

/* media section */
/* .media-section {
  background-color: #f7faff;
} */

.video-left-col video {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

/* media section */

/* testimonial section */
.testimonial-section {
  padding: 30px 0;
  background: #fff;
}

.testimonial-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.8rem;
  /* gap-y-45 equivalent */
}

.testimonial-quote {
  font-family: "Teodor-Regular";
  font-size: 5rem;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #7c7262;
}

.testimonial-cite {
  font-family: "font-2";
  font-style: normal;
  font-size: 1.3rem;
  color: #7c7262;
  font-weight: 500;
  text-align: left;
}

.testimonial-site {
  font-family: "font-2";
  font-style: normal;
  font-size: 1.3rem;
  color: #7c7262;
  font-weight: 500;
  text-align: left;
}

/* Text animation setup */
.quote-line {
  overflow: hidden;
  display: block;
  position: relative;
}

.quote-line-inner {
  display: block;
  position: relative;
  text-align: center;
  transform: translateY(100%);
  animation: slideUp 0.8s ease-out forwards;
  animation-play-state: paused;
}

.quote-line-inner:nth-child(1) {
  animation-delay: 0.1s;
}

.quote-line-inner:nth-child(2) {
  animation-delay: 0.3s;
}

.quote-line-inner:nth-child(3) {
  animation-delay: 0.5s;
}

.quote-line-inner:nth-child(4) {
  animation-delay: 0.7s;
}

.quote-line-inner:nth-child(5) {
  animation-delay: 0.9s;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

/* Animation trigger class */
.animate-in .quote-line-inner {
  animation-play-state: running;
}

/* testimonial section */

.hero-image-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 60vh;
  /* Default height for portrait/mobile */
}

/* Landscape-specific height */
@media screen and (orientation: landscape) {
  .hero-image-section {
    height: 100vh;
  }
}

.hero-image-container {
  width: 100%;
  height: 100%;
}

/* features section */

.features-section {
  background-color: #f0eeea;
}

.features-heading {
  font-family: "Teodor-Regular";
  font-size: 5rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #333;
  text-align: left;
  margin-bottom: 0;
}

/* Text animation setup */
.text-line {
  overflow: hidden;
  display: block;
  position: relative;
}

.text-line-inner {
  display: block;
  position: relative;
  transform: translateY(100%);
  animation: slideUp 0.8s ease-out forwards;
  animation-play-state: paused;
}

.text-line-inner:nth-child(1) {
  animation-delay: 0.1s;
}

.text-line-inner:nth-child(2) {
  animation-delay: 0.3s;
}

.text-line-inner:nth-child(3) {
  animation-delay: 0.5s;
}

/* Advanced Button System - Based on Original CSS */
.btn {
  --font-size: 12px;
  --label-font-size: 1.4em;
  --height: 2.3em;
  --padding-left: 0.5em;
  --padding-right: 0.5em;
  --gap-x: 2em;
  --border-radius: 0.3em;
  --color-primary: #4e82a4;
  --color-secondary: #fff;
  --color-mask: var(--color-primary);
  --arrow-width: 1.2em;
  --border-opacity: 0.4;
  --transition-duration: 1s;
  --transition-timing: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --offset: 0px;
  --arrow-gap: 0.5em;
  --arrow-offset: calc((var(--arrow-width) + var(--arrow-gap)) * 0.5);
  border-radius: var(--border-radius);
  cursor: pointer;
  display: inline-flex;
  font-size: var(--font-size);
  font-family: "font-2";
  font-weight: 400;
  overflow: hidden;
  position: relative;
  /* margin-top: 2.5rem; */
  text-decoration: none;
  border: 1px solid #4e82a4;
  background: transparent;
}

.btn__content {
  color: var(--color-primary);
  display: flex;
  gap: 0 var(--gap-x);
  height: var(--height);
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--padding-right) 0 var(--padding-left);
  position: relative;
  z-index: 1;
}

header .btn__content {
  color: #fff;
}

.btn__mask {
  background-color: #4e82a4;
  clip-path: inset(100% 0 0 0);
  color: var(--color-secondary);
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: left;
  padding: 0 var(--padding-right) 0 var(--padding-left);
  transition: clip-path var(--transition-duration) var(--transition-timing);
  z-index: 2;
}

.btn-label {
  position: relative;
}

.btn-label__text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding-top: 0.075em;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 1px;
}

.btn__a {
  height: auto;
  width: var(--arrow-width);
  fill: currentColor;
}

.btn__a.--2 {
  display: block;
  position: absolute;
  right: calc(100% + var(--arrow-gap));
  top: 50%;
  transform: translate(calc(var(--padding-left) * -1.25)) translateY(-50%);
}

/* Hover Effects */
.btn:hover {
  text-decoration: none;
}

.btn:hover .btn__mask {
  clip-path: inset(0 0 0 0);
}

.btn:hover .btn-label {
  transform: translate(calc(var(--offset) + var(--arrow-offset)));
  transition: transform var(--transition-duration) var(--transition-timing);
}

.btn:hover .btn__a.--1 {
  transform: translate(280%) translate(var(--padding-right));
  transition: transform 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.btn:hover .btn__a.--2 {
  transform: translate(0) translateY(-50%);
  transition: transform var(--transition-duration) var(--transition-timing);
  transition-delay: 75ms;
}

.btn-label,
.btn__a {
  transition: transform var(--transition-duration) var(--transition-timing);
}

.btn__a.--1 {
  transition-delay: 75ms;
}

.btn__a.--2 {
  transition-delay: 0s;
}

/* Animation trigger class */
.animate-in .text-line-inner {
  animation-play-state: running;
}

.cards-section {
  background-color: #f0eeea;
}

.split-section {
  background-color: #f0eeea;
}

.split-section .features-heading {
  margin-bottom: 0;
}

.cards-section a h2 {
  font-size: 14px;
  line-height: 1;
  padding-top: 0.075em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #333;
  font-family: "font-2";
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Cards section image hover zoom */
.cards-section picture img {
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
  transform-origin: center;
  will-change: transform;
}

@media (hover: hover) {
  .cards-section a:hover picture img,
  .cards-section a:focus picture img {
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cards-section picture img {
    transition: none;
  }
}

/* Cards section h2 arrow animation */
.cards-section h2 svg {
  overflow: visible;
  display: inline-block;
  height: 20px;
  width: auto;
  color: #333;
}

.cards-section h2 svg .h-shape__shape {
  transition: transform 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.cards-section h2 svg .h-shape__shape:last-child {
  transform: translateX(-120%);
}

@media (hover: hover) {
  .cards-section a:hover h2 svg .h-shape__shape:first-child,
  .cards-section a:focus h2 svg .h-shape__shape:first-child {
    transform: translateX(100%);
  }

  .cards-section a:hover h2 svg .h-shape__shape:last-child,
  .cards-section a:focus h2 svg .h-shape__shape:last-child {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cards-section h2 svg .h-shape__shape {
    transition: none;
  }
}

.split-section p {
  color: #333;
  font-family: "font-2";
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.split-section .features-heading {
  font-size: 4rem;
  list-style: 1.1;
}

/* Footer link styles */
.footer-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
  font-size: 13px;
  /*font-size: clamp(0.9rem, 1.2vw, 1rem);*/
  line-height: 25px;
  font-family: font-2;
}

.footer-link:hover {
  color: color-mix(in srgb, #ffffff, black 20%);
  text-decoration: none;
}

.footer-uline {
  color: #7c7262;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-uline:hover {
  color: color-mix(in srgb, #7c7262, black 20%);
}

.bg-white-off-1 {
  background-color: #f7f4ef;
}

.footer {
  background-color: #7c7262;
}

.footer-copyright p {
  font-family: font-2;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-copyright ul li a,
.footer-copyright a {
  font-family: font-2;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
}

/* Hero banner */
.hero-banner .features-heading {
  color: #fff;
}

.hero-banner .btn .btn-label__text {
  color: currentColor;
}

.hero-banner .btn__content {
  color: #fff;
}

.hero-banner .btn__mask {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.hero-banner .btn:before {
  border-color: #fff;
  opacity: 0.4;
}

/* Reuse cards arrow animation for hero scroll arrow */
.hero-banner svg .h-shape__shape {
  transition: transform 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.hero-banner button:hover svg .h-shape__shape:first-child,
.hero-banner button:focus svg .h-shape__shape:first-child {
  transform: translateX(100%);
}

.hero-banner svg .h-shape__shape:last-child {
  transform: translateX(-120%);
}

.hero-banner button:hover svg .h-shape__shape:last-child,
.hero-banner button:focus svg .h-shape__shape:last-child {
  transform: translateX(0);
}

/* Media section centered logo */
.media-section .video-container {
  position: relative;
}

.media-logo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  /* transform: scale(1.2); */
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.media-logo .sh-logo {
  pointer-events: auto;
}

.media-section.animate-in .media-logo {
  opacity: 1;
}

/* Reveal hero logo only for the hero section */
.hero-banner.animate-in .media-logo {
  opacity: 1;
}

/* Media logo shrink when section is scrolled past */
.media-section.is-past .media-logo {
  transform: scale(0.85);
  opacity: 0;
}

.sh-logo__img {
  height: 120px;
  width: auto;
}

@media (min-width: 576px) {
  .sh-logo__img {
    height: 150px;
  }
}

@media (min-width: 992px) {
  .sh-logo__img {
    height: 170px;
  }
}

/* Header */
.site-header {
  background: transparent;
  pointer-events: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header .container {
  pointer-events: auto;
}

.site-header .logo-img {
  height: 28px;
  width: auto;
}

.mm-lines {
  width: 22px;
  height: 16px;
}

.mm-line__inner {
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.2s ease, background-color 0.3s ease;
}

.site-header .sh__inquire .btn__content {
  color: #fff;
}

.site-header .sh__inquire:before {
  border-color: #fff;
  opacity: 0.4;
}

/* Solid header state after leaving hero */
.site-header--solid {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.site-header--solid .mm-line__inner {
  background: #7c7262;
}

.site-header--solid .sh__inquire .btn__content {
  color: #7c7262;
}

.site-header--solid .sh__inquire:before {
  border-color: #7c7262;
}

/* Hamburger transforms when open */
.mm-btn[aria-expanded="true"] .mm-line__inner:first-child {
  transform: translateY(3px) rotate(45deg);
}

.mm-btn[aria-expanded="true"] .mm-line__inner:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Make header readable on hero */
.hero-banner + .section-padding {
  padding-top: 60px;
}

/* Fullscreen menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1040;
  color: #fff;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-overlay.is-open {
  pointer-events: auto;
  opacity: 1;
}

.menu-overlay__mask {
  position: absolute;
  inset: 0;
  background: #7c7262;
  transform: translateY(-4%);
  opacity: 1;
  transition: transform 0.5s ease;
}

.menu-overlay.is-open .menu-overlay__mask {
  transform: translateY(0);
}

.menu-image picture img {
  object-fit: cover;
}

.menu-link {
  color: #fff;
  text-decoration: none;
}

.menu-link:hover {
  text-decoration: underline;
  color: #fff;
}

/* Stagger reveal for menu links */
.menu-links .menu-link {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.menu-link:hover {
  font-weight: 600;
  text-decoration: none;
  opacity: 1;
}

.menu-overlay.is-open .menu-links .menu-link {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay.is-open .menu-links li:nth-child(1) .menu-link {
  transition-delay: 0.05s;
}

.menu-overlay.is-open .menu-links li:nth-child(2) .menu-link {
  transition-delay: 0.1s;
}

.menu-overlay.is-open .menu-links li:nth-child(3) .menu-link {
  transition-delay: 0.15s;
}

.menu-overlay.is-open .menu-links li:nth-child(4) .menu-link {
  transition-delay: 0.2s;
}

.menu-overlay.is-open .menu-links li:nth-child(5) .menu-link {
  transition-delay: 0.25s;
}

.menu-overlay.is-open .menu-links li:nth-child(6) .menu-link {
  transition-delay: 0.3s;
}

/* Hamburger label toggle */
.mm-btn[aria-expanded="true"] [data-label-menu] {
  display: none !important;
}

.mm-btn[aria-expanded="true"] [data-label-close] {
  display: inline !important;
}

@media (max-width: 991px) {
  .aside-image {
    display: none;
  }
}

.preloader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  z-index: 2000;
  background-color: #7c7262;
  opacity: 1;
  visibility: visible;
  transition: opacity 2s ease, visibility 0.6s ease, transform 1s ease;
}

.preloader-logo {
  color: #7c7262;
  transform-origin: center;
  animation: preloaderPulse 1s cubic-bezier(0.19, 1, 0.22, 1) infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes preloaderPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.9;
  }
  50% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.9;
  }
}

.preloader.is-hide {
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
}

/* --- HEADER/NAVBAR & HAMBURGER MENU STYLES (from style.css integration) --- */

.sh {
  --transition-duration: 1s;
  --transition-ease: cubic-bezier(0.19, 1, 0.22, 1);
  --color: #fff;
  color: var(--color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transform: translateY(0);
  transition: transform var(--transition-duration) var(--transition-ease);
}

.sh.is-active,
.sh.is-scrolled .sh-light,
.sh.is-scrolled .sh-light__mask {
  transform: translateY(0);
}

.sh.is-instant,
.sh.is-instant .sh-light,
.sh.is-instant .sh-light__mask {
  transition: none;
}

.sh.is-always .sh-light,
.sh.is-always .sh-light__mask {
  transform: translateY(0) !important;
}

.sh.is-light {
  --color: #000000;
  background: rgb(255, 255, 255);
}

.sh-logo {
  --width: 10rem;
  --height: auto;
  --scale: 0.5;
  --left: 2rem;
  left: var(--left);
  transform: scale(var(--scale));
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color);
}

.sh-logo__img {
  height: var(--height);
  width: var(--width);
  fill: currentColor;
}

@media (min-width: 650px) {
  .sh-logo {
    --width: 22.5rem;
    --scale: 0.2;
    --left: calc(50% - var(--width) / 2);
  }

  .sh-logo.--large {
    --scale: 1;
  }
}

/* Hamburger Menu */
.mm {
  background: none;
  border: none;
  color: var(--color);
  cursor: pointer;
  padding: 1rem;
  z-index: 1001;
}

.mm-line {
  --width: 5rem;
  --height: 0.2rem;
  height: var(--height);
  position: relative;
  width: var(--width);
}

.mm-line__inner {
  background-color: currentColor;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
}

.mm-line__inner:first-child {
  transform: translateY(-0.5rem);
}

.mm.is-active .mm-line__inner:first-child {
  transform: rotate(22.5deg) translateY(0);
}

.mm-line__inner:nth-child(2) {
  transform: translateY(0.5rem);
}

.mm.is-active .mm-line__inner:nth-child(2) {
  transform: rotate(-22.5deg) translateY(0);
}

/* Hamburger label animation */
.label {
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: grid;
}

.label > * {
  grid-area: 1/1;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (min-width: 650px) {
  .mm__label {
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .mm.is-active .mm__label:first-child {
    transform: translateY(-105%);
  }

  .mm__label:nth-child(2) {
    transform: translateY(105%);
  }

  .mm.is-active .mm__label:nth-child(2) {
    transform: translateY(0);
  }
}

/* Inquire Button (already styled, but ensure .btn.--light and .sh__inquire are present) */
.btn.--light {
  --color-primary: #fff;
  --color-secondary: #7c7262;
}

.is-light .btn.--light {
  --color-primary: #7c7262;
  --color-secondary: #fff;
}

.sh__inquire {
  pointer-events: auto;
  transition: opacity 0.5s ease-out;
}

/* Header utility classes for layout and responsiveness */
.site-max {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
}

.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.items-center {
  align-items: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}

.py-30 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.gap-x-15 {
  column-gap: 1.5rem;
}
.pointer-events-auto {
  pointer-events: auto;
}
.js-sh-fade {
  transition: opacity 0.5s ease-out;
}

/* Position helpers */
.top-0 {
  top: 0;
}
.left-0 {
  left: 0;
}
.top-1\/2 {
  top: 50%;
}
.left-20 {
  left: 2rem;
}
.z-2 {
  z-index: 2;
}
.z-10 {
  z-index: 10;
}
.w-full {
  width: 100%;
}
.h-25 {
  height: 2.5rem;
}
.w-auto {
  width: auto;
}

/* Small breakpoint utilities (s:) */
@media (min-width: 650px) {
  .s\:py-20 {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
  }
  .s\:justify-between {
    justify-content: space-between;
  }
  .s\:left-1\/2 {
    left: 50%;
  }
  /* Combine X and Y transforms when both classes are present */
  .s\:-translate-x-1\/2 {
    transform: translateX(-50%) translateY(-50%);
  }
}

/* Transform helpers */
.-translate-y-1\/2 {
  transform: translateX(-50%) translateY(-50%);
}

/* Hide on max small screens */
@media (max-width: 649px) {
  .max-s\:\!hidden {
    display: none !important;
  }
}

/* Ensure .sh header hamburger lines follow currentColor and no extra margin */
.sh .mm-line__inner {
  /* background-color: currentColor; */
  background-color: #fff;
  margin: 0;
}

header.scrolled .mm-line__inner {
  background-color: #000 !important;
}
/* Forms: map Bootstrap form controls to site styles */
.form-label {
  color: #7c7262;
  font-family: "font-2";
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-control,
.form-select {
  background: transparent;
  color: #7c7262;
  border: 1px solid rgba(124, 114, 98, 0.2);
  border-radius: 0.4rem;
  height: 3.5rem;
  padding: 0.75rem 1rem;
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  color: #7c7262;
  background: transparent;
  border-color: #7c7262;
  outline: none;
  box-shadow: none;
}

/* Large submit alignment spacing tweak */
@media (max-width: 575.98px) {
  .form-label {
    font-size: 12px;
  }
  .form-control,
  .form-select {
    height: 3.25rem;
  }
}

/* Hero gradient overlay & scroll */
.hero-banner.--gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 50%),
    linear-gradient(180deg, transparent 62.5%, rgba(0, 0, 0, 0.8)),
    linear-gradient(0deg, #0000001a, #0000001a);
  opacity: 0.8;
  z-index: 2;
}

.hero__scroll {
  right: 2rem;
}
.--media .hero__scroll {
  display: none;
  right: 50%;
  transform: translateX(50%);
}
@media (min-width: 650px) {
  .--media .hero__scroll {
    display: block;
  }
}

/* Custom check control (optional, used if .check markup is present) */
.check {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 0 0.75rem;
  position: relative;
}
.check input {
  all: unset;
  position: absolute;
  visibility: hidden;
}
.check span {
  order: 2;
}
.check__mark {
  background-color: transparent;
  border: 1px solid rgba(124, 114, 98, 0.2);
  border-radius: 0.2rem;
  height: 1.3rem;
  order: 1;
  position: relative;
  width: 1.3rem;
}
.check__mark::after {
  background-color: #7c7262;
  border-radius: inherit;
  content: "";
  position: absolute;
  top: 0.01rem;
  right: 0.01rem;
  bottom: 0.01rem;
  left: 0.01rem;
  transform: scale(0);
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}
.check input:checked ~ .check__mark::after {
  transform: scale(1);
}

/* Media modal content utility (optional) */
.media-modal__content {
  aspect-ratio: 16/9;
  max-height: calc(100% - 12rem);
  width: 100%;
}
@media (min-width: 650px) {
  .media-modal__content {
    max-height: calc(100% - 18rem);
  }
}

/* Button modifiers and wrapper-hover support */
.btn.--full {
  --gap-x: 0;
  display: flex;
  width: 100%;
}
.btn.--small {
  --height: 2.7em;
  --padding-left: 0.8em;
  --padding-right: 0.8em;
  --gap-x: 4.8rem;
}
.btn.--big {
  --height: 8.5em;
  --padding-left: 3em;
  --padding-right: 3em;
}
/* Force mask visible for solid variant */
.--solid .btn__mask {
  clip-path: inset(0 0 0 0);
  display: flex;
}
/* Wrapper hover (optional) */
@media (hover: hover) and (pointer: fine) {
  .btn-t:hover .btn .btn__mask {
    clip-path: inset(0 0 0 0);
  }
  .btn-t:hover .btn .btn-label {
    transform: translate(calc(var(--offset) + var(--arrow-offset)));
  }
  .btn-t:hover .btn .btn__a.--1 {
    transform: translate(100%) translate(var(--padding-right));
    transition: transform 0.75s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
  .btn-t:hover .btn .btn__a.--2 {
    transform: translate(0) translateY(-50%);
    transition-delay: 75ms;
  }
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4e82a4;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: #fff;
  font-size: 21px;
}

/*** amenites ***/
.amenity-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #181818;
  border-radius: 8px;
}

.amenity-card img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  margin: 20px 0 10px 0;
}

.amenity-card .card-title {
  font-size: 1rem;
  font-weight: 500;
  color: #ffff;
  margin-bottom: 18px;
  text-align: center;
}

.amenities-title {
  color: #003c2e;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.8rem;
  text-transform: uppercase;
}
/*** amenites ***/

.sh.is-light {
  background-color: transparent;
}

/*** contact us ***/
.contact .info-box {
  background-color: #7c7262;
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgb(0 0 0 / 28%);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn,
.commonBtn {
  background-color: #4e82a4;
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
  border: 0;
}

.commonBtn {
  padding: 8px 2rem;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover,
.commonBtn:hover {
  background-color: color-mix(in srgb, #7c7262, #020805 20%);
}
/*** contact us ***/

.text-center {
  text-align: center;
}
.floorPlanTitle {
  text-align: center;
}

header {
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: #fff !important;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

header.scrolled #pageLogo img {
  display: block;
  filter: invert(0) !important;
}

.mm__label {
  color: #fff;
}

header.scrolled .btn__content {
  color: #000000;
}

header.scrolled .mm__label {
  color: #000000;
}

.coverWrapper {
  height: 100vh;
  position: relative;
  background-color: #fff;
}

.coverWrapper .cover-image {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.coverWrapper .cover-image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  /* background-color: rgb(0 0 0 / 20%); */
}

.coverWrapper .cover-image > span {
  /* background: url("../img/plambeachroad.jpg") no-repeat; 
  background: url("../img/new/skyline-night-image_1500by1050.jpg") no-repeat;*/
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(0.6);
  transform-origin: center center;
}

.coverWrapper .holder {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* padding: 4.8611111111vw 0; */
  /* height: 100vh; */
  max-width: 1100px;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  background-color: #7c7262;
  padding: 50px;
  border-radius: 16px;
}

.coverWrapper .holder .cover-columns {
  display: flex;
  /* justify-content: space-between; */
  /* align-items: flex-start; */
  min-width: 100%;
  color: #fff;
}

.headerLogo {
  filter: invert(1);
}

.pageLogo {
  opacity: 1 !important;
}

.cover-columns .row {
  width: 100%;
}

.cover-columns-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.cover-columns-box img {
  width: 100px;
  /* filter: invert(1); */
}

.cover-columns-box p {
  margin-bottom: 0;
  line-height: 1.2;
}

.floorPlanBox img {
  filter: blur(4px);
}

.floorPlanBox a {
  text-decoration: none;
  color: #000;
}
#pageLogo img {
  width: 140px !important;
}

.section-padding.introduction-copy-section {
  padding-bottom: 0 !important;
}

.media-section.section-padding {
  padding-top: 30px;
}

.bannerLogo {
  z-index: 99;
  pointer-events: none;
}

.qrImag {
  width: 100px;
  min-width: 100px;
}

.discliamer p {
  color: #fff;
  font-size: 10px;
  margin-bottom: 0;
  line-height: 1.2;
}

.mainBanner .swiper-button-next {
  right: 30px;
}

.mainBanner .swiper-button-prev {
  left: 30px;
}

.ft-logo {
  height: 100px;
  width: auto;
  filter: invert(1);
}
@media (max-width: 767px) {
  .headerLogo {
    width: 110px !important;
    filter: invert(1);
  }

  .mm-line {
    --width: 40px;
  }

  .mm-btn {
    padding: 0;
  }

  .site-max {
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  button#pageLogo {
    transform: none !important;
    left: 0;
    top: 0;
    position: relative;
  }

  .cover-columns-box img {
    width: 50px;
  }

  .coverWrapper .holder {
    max-width: 90%;
  }

  #aboutUs {
    padding: 0px 0;
  }

  .overiew-content {
    padding: 50px 30px;
  }

  .introduction-copy-section {
    padding-bottom: 0 !important;
  }

  .coverWrapper .cover-image > span {
    background: none;
    height: auto;
  }
  .coverWrapper {
    height: auto;
    padding-bottom: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .coverWrapper .holder {
    left: 0;
    transform: none;
    top: 0;
    padding: 30px 20px;
  }
  .coverWrapper .holder .cover-columns {
    justify-content: center;
  }

  .cover-columns-box {
    text-align: center;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 15px;
  }

  .mainBanner .swiper-button-next {
    right: 15px;
  }

  .mainBanner .swiper-button-prev {
    left: 15px;
  }

  .enquireNowSideFormBtn {
    right: -58px;
  }

  .cards-section.section-padding {
    padding-top: 0;
  }

  .ft-logo {
    height: 70px;
  }
}

@media (min-width: 1200px) {
  #pageLogo img {
    display: none;
  }

  header.scrolled #pageLogo img {
    display: block;
  }
}
